home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / etc / ppp / ip-down.d / 000resolvconf < prev   
Encoding:
Text File  |  2006-08-09  |  346 b   |  16 lines

  1. #!/bin/sh
  2. #
  3. # PPP down hook script for resolvconf
  4. #
  5. # Reconfigures resolver to take into account
  6. # the disappearance of the ppp interface
  7. #
  8. # Licensed under the GNU GPL.  See /usr/share/common-licenses/GPL.
  9. #
  10. # History
  11. # June 2003: Written by Thomas Hood <jdthood@yahoo.co.uk>
  12.  
  13. [ -x /sbin/resolvconf ] || exit 0
  14.  
  15. /sbin/resolvconf -d "$PPP_IFACE"
  16.